home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / doc / libntfs-3g28 / README < prev    next >
Text File  |  2008-01-20  |  3KB  |  72 lines

  1.  
  2. INTRODUCTION
  3. ============
  4.  
  5. The NTFS-3G driver is an open source, freely available read/write NTFS driver 
  6. for Linux, FreeBSD, Mac OS X, NetBSD, and Haiku. It provides safe and fast 
  7. handling of the Windows XP, Windows Server 2003, Windows 2000 and Windows 
  8. Vista file systems. Most POSIX file system operations are supported, and 
  9. full file ownership and permission support is also coming along fast.
  10.  
  11. The purpose of the project is to develop, continuously quality test and
  12. support a trustable, featureful and high performance solution for hardware
  13. platforms and operating systems whose users need to reliably interoperate
  14. with NTFS. Besides this practical goal, the project also aims to explore
  15. the limits of the hybrid, kernel/user space filesystem driver approach,
  16. performance, reliability and feature richness per invested effort wise.
  17.  
  18. The driver is in STABLE status. The test methods, the test suites used and
  19. testimonials can be found on
  20.  
  21.     http://www.ntfs-3g.org/quality.html
  22.  
  23. News, support answers, problem submission instructions, support and discussion 
  24. forums, performance numbers and other information are available on the project 
  25. web site at
  26.  
  27.     http://www.ntfs-3g.org
  28.  
  29.  
  30. QUICK INSTALLATION
  31. ==================
  32.  
  33. Linux: Make sure you have the basic development tools and the kernel includes 
  34. the FUSE kernel module. Then type:  
  35.  
  36.     ./configure
  37.     make
  38.     make install      # or 'sudo make install' if you aren't root.
  39.  
  40. Please note that NTFS-3G doesn't require the FUSE user space package anymore.
  41.  
  42. Non-Linux: Please see the NTFS-3G web page for OS specific installation and 
  43. source packages.
  44.  
  45.  
  46. USAGE
  47. =====
  48.  
  49. If there was no error during installation then the NTFS volume can be
  50. read-write mounted for everybody the following way (unmount the volume if 
  51. it was already mounted, and replace /dev/sda1 and /mnt/windows, if needed):
  52.  
  53.     mount -t ntfs-3g /dev/sda1 /mnt/windows
  54. or
  55.     ntfs-3g /dev/sda1 /mnt/windows
  56.  
  57. If your Operating System vendor didn't setup your language specific settings 
  58. then you may also need to set the 'locale' mount option to make all filenames 
  59. with national characters visible. Replace the below en_US.UTF-8 with the 
  60. appropriate setting. You can find more information about his topic at
  61. http://ntfs-3g.org/support.html#locale
  62.  
  63.     mount -t ntfs-3g /dev/hda1 /mnt/windows -o locale=en_US.UTF-8
  64.  
  65. Please see the ntfs-3g manual page for more options and examples.
  66.  
  67. You can also make NTFS to be mounted during boot by putting the below 
  68. line at the __END__ of the /etc/fstab file:
  69.  
  70.     /dev/sda1 /mnt/windows ntfs-3g defaults 0 0
  71.  
  72.